* icons prelight on mouseover.
*
* Since: 2.16
+ *
+ * Deprecated: 3.20: Use CSS to control the appearance of prelighted icons;
+ * the value of this style property is ignored.
*/
gtk_widget_class_install_style_property (widget_class,
g_param_spec_boolean ("icon-prelight",
P_("Border around the progress bar"),
GTK_TYPE_BORDER,
GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
-
+
/**
* GtkEntry:invisible-char:
*
{
GtkEntryPrivate *priv = entry->priv;
EntryIconInfo *icon_info = priv->icons[icon_pos];
- gboolean prelight;
if (!icon_info)
return FALSE;
if (icon_info->pressed)
return FALSE;
- gtk_widget_style_get (GTK_WIDGET (entry),
- "icon-prelight", &prelight,
- NULL);
-
- return prelight;
+ return TRUE;
}
static void